// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Code generated by the FlatBuffers compiler. DO NOT EDIT.

package flatbuf

import (
	flatbuffers 
)

// / Compressed Sparse format, that is matrix-specific.
type SparseMatrixIndexCSX struct {
	_tab flatbuffers.Table
}

func ( []byte,  flatbuffers.UOffsetT) *SparseMatrixIndexCSX {
	 := flatbuffers.GetUOffsetT([:])
	 := &SparseMatrixIndexCSX{}
	.Init(, +)
	return 
}

func ( *SparseMatrixIndexCSX) ( []byte,  flatbuffers.UOffsetT) {
	._tab.Bytes = 
	._tab.Pos = 
}

func ( *SparseMatrixIndexCSX) () flatbuffers.Table {
	return ._tab
}

// / Which axis, row or column, is compressed
func ( *SparseMatrixIndexCSX) () SparseMatrixCompressedAxis {
	 := flatbuffers.UOffsetT(._tab.Offset(4))
	if  != 0 {
		return SparseMatrixCompressedAxis(._tab.GetInt16( + ._tab.Pos))
	}
	return 0
}

// / Which axis, row or column, is compressed
func ( *SparseMatrixIndexCSX) ( SparseMatrixCompressedAxis) bool {
	return ._tab.MutateInt16Slot(4, int16())
}

// / The type of values in indptrBuffer
func ( *SparseMatrixIndexCSX) ( *Int) *Int {
	 := flatbuffers.UOffsetT(._tab.Offset(6))
	if  != 0 {
		 := ._tab.Indirect( + ._tab.Pos)
		if  == nil {
			 = new(Int)
		}
		.Init(._tab.Bytes, )
		return 
	}
	return nil
}

// / The type of values in indptrBuffer
// / indptrBuffer stores the location and size of indptr array that
// / represents the range of the rows.
// / The i-th row spans from `indptr[i]` to `indptr[i+1]` in the data.
// / The length of this array is 1 + (the number of rows), and the type
// / of index value is long.
// /
// / For example, let X be the following 6x4 matrix:
// / ```text
// /   X := [[0, 1, 2, 0],
// /         [0, 0, 3, 0],
// /         [0, 4, 0, 5],
// /         [0, 0, 0, 0],
// /         [6, 0, 7, 8],
// /         [0, 9, 0, 0]].
// / ```
// / The array of non-zero values in X is:
// / ```text
// /   values(X) = [1, 2, 3, 4, 5, 6, 7, 8, 9].
// / ```
// / And the indptr of X is:
// / ```text
// /   indptr(X) = [0, 2, 3, 5, 5, 8, 10].
// / ```
func ( *SparseMatrixIndexCSX) ( *Buffer) *Buffer {
	 := flatbuffers.UOffsetT(._tab.Offset(8))
	if  != 0 {
		 :=  + ._tab.Pos
		if  == nil {
			 = new(Buffer)
		}
		.Init(._tab.Bytes, )
		return 
	}
	return nil
}

// / indptrBuffer stores the location and size of indptr array that
// / represents the range of the rows.
// / The i-th row spans from `indptr[i]` to `indptr[i+1]` in the data.
// / The length of this array is 1 + (the number of rows), and the type
// / of index value is long.
// /
// / For example, let X be the following 6x4 matrix:
// / ```text
// /   X := [[0, 1, 2, 0],
// /         [0, 0, 3, 0],
// /         [0, 4, 0, 5],
// /         [0, 0, 0, 0],
// /         [6, 0, 7, 8],
// /         [0, 9, 0, 0]].
// / ```
// / The array of non-zero values in X is:
// / ```text
// /   values(X) = [1, 2, 3, 4, 5, 6, 7, 8, 9].
// / ```
// / And the indptr of X is:
// / ```text
// /   indptr(X) = [0, 2, 3, 5, 5, 8, 10].
// / ```
// / The type of values in indicesBuffer
func ( *SparseMatrixIndexCSX) ( *Int) *Int {
	 := flatbuffers.UOffsetT(._tab.Offset(10))
	if  != 0 {
		 := ._tab.Indirect( + ._tab.Pos)
		if  == nil {
			 = new(Int)
		}
		.Init(._tab.Bytes, )
		return 
	}
	return nil
}

// / The type of values in indicesBuffer
// / indicesBuffer stores the location and size of the array that
// / contains the column indices of the corresponding non-zero values.
// / The type of index value is long.
// /
// / For example, the indices of the above X is:
// / ```text
// /   indices(X) = [1, 2, 2, 1, 3, 0, 2, 3, 1].
// / ```
// / Note that the indices are sorted in lexicographical order for each row.
func ( *SparseMatrixIndexCSX) ( *Buffer) *Buffer {
	 := flatbuffers.UOffsetT(._tab.Offset(12))
	if  != 0 {
		 :=  + ._tab.Pos
		if  == nil {
			 = new(Buffer)
		}
		.Init(._tab.Bytes, )
		return 
	}
	return nil
}

// / indicesBuffer stores the location and size of the array that
// / contains the column indices of the corresponding non-zero values.
// / The type of index value is long.
// /
// / For example, the indices of the above X is:
// / ```text
// /   indices(X) = [1, 2, 2, 1, 3, 0, 2, 3, 1].
// / ```
// / Note that the indices are sorted in lexicographical order for each row.
func ( *flatbuffers.Builder) {
	.StartObject(5)
}
func ( *flatbuffers.Builder,  SparseMatrixCompressedAxis) {
	.PrependInt16Slot(0, int16(), 0)
}
func ( *flatbuffers.Builder,  flatbuffers.UOffsetT) {
	.PrependUOffsetTSlot(1, flatbuffers.UOffsetT(), 0)
}
func ( *flatbuffers.Builder,  flatbuffers.UOffsetT) {
	.PrependStructSlot(2, flatbuffers.UOffsetT(), 0)
}
func ( *flatbuffers.Builder,  flatbuffers.UOffsetT) {
	.PrependUOffsetTSlot(3, flatbuffers.UOffsetT(), 0)
}
func ( *flatbuffers.Builder,  flatbuffers.UOffsetT) {
	.PrependStructSlot(4, flatbuffers.UOffsetT(), 0)
}
func ( *flatbuffers.Builder) flatbuffers.UOffsetT {
	return .EndObject()
}